﻿.bannerImg {
    background-position: center bottom;
}

#marcas {
    padding: 55px 3%;
    background: linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
}

#marcas #marcas-box-cards {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr;
}

#marcas #marcas-box-cards a {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

#marcas #marcas-box-cards a:hover {
    background-color: #ffffff;
    opacity: 0.8;
    cursor: pointer;
}

#marcas #marcas-box-cards a img {
    width: 100%;
    height: auto;
    cursor: pointer;
    border-radius: 6px;
}

@media screen and (max-width: 480px) {
    #marcas #marcas-box-cards {
        grid-template-columns: 1fr;
    }
}